home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / AMOSList / AMOSLIST.0997 / 000090_amos-request@svcs1.digex.net_Tue Sep 9 18:22:08 1997.msg < prev    next >
Text File  |  1997-10-01  |  4KB  |  99 lines

  1. Received: from svcs1.digex.net (svcs1.digex.net [204.91.197.224])
  2.     by mail1.access.digex.net (8.8.5/8.8.5) with ESMTP id SAA10566
  3.     for <mcox@access.digex.net>; Tue, 9 Sep 1997 18:22:07 -0400 (EDT)
  4. Received: (from daemon@localhost)
  5.     by svcs1.digex.net (8.8.5/8.8.5) id OAA26370
  6.     for amos-out; Tue, 9 Sep 1997 14:11:55 -0400 (EDT)
  7. Received: from mail3.access.digex.net (mail3.access.digex.net [205.197.247.4])
  8.     by svcs1.digex.net (8.8.5/8.8.5) with ESMTP id OAA26367
  9.     for <amos-list@svcs1.digex.net>; Tue, 9 Sep 1997 14:11:54 -0400 (EDT)
  10. Received: from mago.agonet.it (mago.agonet.it [195.32.124.10])
  11.     by mail3.access.digex.net (8.8.5/8.8.5) with ESMTP id OAA04835
  12.     for <amos-list@access.digex.net>; Tue, 9 Sep 1997 14:11:52 -0400 (EDT)
  13. Received: from agonet.it (ghizzo@p126069.agonet.it [195.32.126.69])
  14.     by mago.agonet.it (8.8.5/8.8.5) with SMTP id UAA02677;
  15.     Tue, 9 Sep 1997 20:13:42 +0200
  16. From: Pietro Ghizzoni <ghizzo@agonet.it>
  17. Reply-To: ghizzo@agonet.it
  18. To: Mush <mushypd@redrose.net>, Amos-List <amos-list@access.digex.net>
  19. Date: Tue, 09 Sep 1997 19:37:34 +0100
  20. Message-ID: <yam7191.1738.2015773304@mail.agonet.it>
  21. In-Reply-To: <yam7190.1757.5621016@mail.redrose.net>
  22. X-Mailer: YAM 1.3.4 [020] - Amiga Mailer by Marcel Beck
  23. Organization: Dairymen Soft
  24. Subject: Re: bug in GUI Extension with Listview
  25. MIME-Version: 1.0
  26. Content-Type: text/plain
  27. Status: O
  28. X-Status: 
  29.  
  30. On 08-Set-97, Mush wrote: bug in GUI Extension with Listview
  31.  
  32. >Sorry if this appears twice, the old title didnt seem to send the mail
  33. >view, so I changed it a bit.
  34.  
  35. >Im not too sure if anyone else has noticed (I think Adam Parrott had at
  36. >some point) there is a bug in the GUI extension (both 1.62 and 1.63) which
  37. >causes the conents of the displayed listview to become corrupt.
  38.  
  39. AArrggghhhh!!!!
  40.  
  41.  
  42. >Procedure GETLIST[LST$]
  43. >   (blah blah blah)
  44. >   Gui Set 1,0,1,ARRAY(TP$(0))
  45. >End Proc
  46.  
  47. >Procedure MAIN
  48. >   Proc GETLIST["AMOSList"]
  49. >   Gui Set 1,0,0,0
  50. >   ' The list is displayed, but can be corrupted at this time if the system
  51. >   ' wants to be a pain in the bum.
  52.  
  53.  
  54. Remove the Gui Set 1,0,1,ARRAY(TP$(0)) from the procedure GETLIST, and put
  55. it outside.. just after the call to GETLIST. i.e.:
  56.  
  57. Procedure MAIN
  58.    Proc GETLIST["AMOSList"] : Gui Set 1,0,1,ARRAY(TP$(0)) : Gui Set 1,0,0,0
  59.  
  60. Now it should (...must :-)) works fine without the extra calls to Gui Set. 
  61.  
  62.  
  63. >... And hey presto, its gone! If you dont have the set just before the GUI
  64. >Wait command, you often see the mess on the screen until you hit something
  65. >inside the listview window, so its nicer to leave it there. Please feel
  66. >free to place this message/example in the GUI Guide on the GUI SET command
  67. >for Listview, or under the "Known Problems" section.
  68.  
  69.  
  70. Oh no.... the bug will be fucked as soon as possible!! Im my programs the
  71. "Know Problems" section never exist! :) If i know a bug i kill it before
  72. the release of the program.
  73.  
  74.  
  75. >Pietro, is this a bug as such, or just something that the OS does rather
  76. >crazily?
  77.  
  78. Probably it's a problem of the refresh routine.... probably i already have
  79. the solution :) Stay tuned.... 
  80.  
  81.  
  82. -- 
  83.  
  84.  
  85. Bye!
  86.  
  87.  
  88.                                      !!!
  89.                                      o o
  90.    +-----------------------------oOO-(_)-OOo----------------------------+
  91.    |                                                                    |
  92.    |  Pietro Ghizzoni - Dairymen Soft              __  /// Amiga 12OO   |
  93.    |     E-Mail:  ghizzo@agonet.it                 \\\/// 'O3O  5OMhz   |
  94.    |            Team AMIGA                          \/// 1OMB - CD4x    |
  95.    |                                                                    |
  96.    | Amos Professional Team Coordinator               AMIGA RULEZ!!     |
  97.    |                                                                    |
  98.    +--------------------------------------------------------------------+
  99.